0ceac1fde87cffb318a646991c87c1358ff340fc,opennms-services/src/main/java/org/opennms/netmgt/linkd/SnmpCollection.java,SnmpCollection,run,#,332

Before Change


				try {
					constr = vlanGetter.getConstructor(classes);
				} catch (NoSuchMethodException e) {
				    LogUtils.warnf(this, e, "SnmpCollection.run: %s class has no such method", m_vlanClass);
                    collectVlanTable = false;
				} catch (SecurityException s) {
                    LogUtils.warnf(this, s, "SnmpCollection.run: %s class security violation", m_vlanClass);

After Change


				try {
					vlanGetter = Class.forName(m_vlanClass);
				} catch (ClassNotFoundException e) {
				    LogUtils.warnf(this, e, "run: %s class not found", m_vlanClass);
				    collectVlanTable = false;
				}